home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000198_news@columbia.edu_Tue Aug 22 14:36:23 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05060
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 22 Aug 1995 10:36:35 -0400
  3. Received: by apakabar.cc.columbia.edu id AA27095
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 22 Aug 1995 10:36:32 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: CKermit for OS/2 freezes
  9. Date: 22 Aug 1995 14:36:23 GMT
  10. Organization: Columbia University
  11. Lines: 30
  12. Message-Id: <41cq17$qei@apakabar.cc.columbia.edu>
  13. References: <41agkn$315@belfort.daimi.aau.dk> <41ce7c$ae9@news.jhu.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <41ce7c$ae9@news.jhu.edu>,  <murthy@pha.jhu.edu> wrote:
  18. : In <41agkn$315@belfort.daimi.aau.dk>, guldager@daimi.aau.dk (Hans Guldager Knudsen) writes:
  19. : >I have problems with Ckermit (5A191) for OS/2 on IBM-pentium machines,
  20. : >running Warp (danish) and IBM TC/PIP 2.0.
  21. : >
  22. : >Sometimes (often) kermit freezes, and the only thing to do, is to kill the
  23. : >session.
  24. : I have this problem too. When I telnet over to the unix machines using
  25. : kermit, kermit occaisonally freezes and I have to kill kermit. I have not
  26. : been able to reproduce it at will which is why I haven't reported it. Note
  27. : that this is distinct from having my whole machine freeze which happens
  28. : reasonably often when I have my modem set to autoanswer!
  29. If this happens when Kermit is in terminal (CONNECT) mode,
  30. the first thing to try is Alt-r (RESET).
  31.  
  32. Explanation: perhaps Kermit has received an APC, DCS, or other escape
  33. sequence which introduces a string of arbitrary length, which must be
  34. terminated by another escape sequence called ST (String Terminator).
  35. Now if an APC, DCS, etc, shows up by accident -- e.g. as garbage, or
  36. because of a terminal-type or character-set mismatch, then Kermit will
  37. wait forever for the ST that isn't coming, and will therefore appear to
  38. be hung.  Solution: RESET the terminal emulator with ST.
  39.  
  40. This is not, by the way, a shortcoming of Kermit -- it's exactly how VT220
  41. and VT320 terminals work.  And, unlike the real terminals, Kermit *does*
  42. give you a reset button :-)
  43.  
  44. - Frank